home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 27 / CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso / CUCD / Programming / JForth / Extras / ODE / load_ode < prev    next >
Encoding:
Text File  |  1991-10-24  |  988 b   |  38 lines

  1. \ Load ODE
  2.  
  3. \ Determine host type
  4. .need HOST=MAC
  5. exists? FILE-CREATOR constant HOST=MAC
  6. .then
  7.  
  8. .need HOST=AMIGA
  9. exists? DOS_LIB constant HOST=AMIGA
  10. .then
  11.  
  12. include? 'c ju:ajf_dict
  13. include? ob.make.member jf:member
  14. include? ..@ jf:c_struct
  15. include? { ju:locals
  16. \
  17. \ ODE - Object Oriented Development Environment ----
  18. include? task-ajf_base jo:ajf_base
  19. include? er.report jo:er.report
  20. include? stack.check jo:utils
  21. include? task-obj_stack jo:obj_stack
  22. include? task-obj_main jo:obj_main
  23. include? task-obj_binding jo:obj_binding
  24. include? task-obj_methods jo:obj_methods
  25. include? task-obj_ivars jo:obj_ivars
  26. include? task-ajf_mm jo:ajf_mm
  27. include? task-Double_List    jo:Double_List
  28. include? task-obj_object jo:obj_object
  29. include? task-obj_array jo:obj_array
  30.  
  31. \ the following files are optional
  32. include? task-elmnts jo:elmnts
  33. include? task-obj_stack_class jo:obj_stack_class
  34. include? task-obj_string jo:obj_string
  35.  
  36. \ This file is only needed for Clone
  37. include? task-Clone_Support jo:Clone_Support
  38.